#setwd('/afs/inf.ed.ac.uk/user/s17/s1725186/Documents/PhD-Models/FirstPUModel/RMarkdowns')

library(tidyverse) ; library(reshape2) ; library(glue) ; library(plotly) ; library(plotlyutils)
library(RColorBrewer) ; library(viridis) ; require(gridExtra) ; library(GGally)
library(Rtsne)
library(ClusterR)
library(DESeq2)

Load preprocessed dataset (preprocessing code in 19_10_14_data_preprocessing.Rmd)

# Gandal dataset
load('./../Data/Gandal/preprocessed_data.RData')
datExpr = datExpr %>% data.frame
DE_info = DE_info %>% data.frame

# GO Neuronal annotations
GO_annotations = read.csv('./../../../PhD-InitialExperiments/FirstYearReview/Data/GO_annotations/genes_GO_annotations.csv')
GO_neuronal = GO_annotations %>% filter(grepl('neuron', go_term)) %>% 
              mutate('ID'=as.character(ensembl_gene_id)) %>% 
              dplyr::select(-ensembl_gene_id) %>% distinct(ID) %>%
              mutate('Neuronal'=1)

# SFARI Genes
SFARI_genes = read_csv('./../Data/SFARI/SFARI_genes_08-29-2019_with_ensembl_IDs.csv')
SFARI_genes = SFARI_genes[!duplicated(SFARI_genes$ID) & !is.na(SFARI_genes$ID),]

# Update DE_info with SFARI and Neuronal information
DE_info = DE_info %>% mutate('ID'=rownames(.)) %>% left_join(SFARI_genes, by='ID') %>% 
  mutate(`gene-score`=ifelse(is.na(`gene-score`), 'None', `gene-score`)) %>%
  distinct(ID, .keep_all = TRUE) %>% left_join(GO_neuronal, by='ID') %>%
  mutate(Neuronal=ifelse(is.na(Neuronal), 0, Neuronal)) %>%
  mutate(gene.score=ifelse(`gene-score`=='None' & Neuronal==1, 'Neuronal', `gene-score`), significant=padj<0.05 & !is.na(padj))


SFARI_colour_hue = function(r) {
  pal = c('#FF7631','#FFB100','#E8E328','#8CC83F','#62CCA6','#59B9C9','#b3b3b3','#808080','gray','#d9d9d9')[r]
}

SFARI Gene list

print(paste0('There are ', length(unique(SFARI_genes$`gene-symbol`)), ' genes with a SFARI score'))
## [1] "There are 979 genes with a SFARI score"

There are 979 genes with a SFARI score. but to map them to gene expression mapa we had to map the gene names to their corresponding ensembl IDs

Mapping SFARI Gene names to Ensembl IDs

print(paste0('There are ', nrow(SFARI_genes), ' Ensembl IDs in the SFARI Gene dataset'))
## [1] "There are 1090 Ensembl IDs in the SFARI Gene dataset"



  • Since a gene can have more than one ensembl ID, there were some one-to-many mappings between a gene name and ensembl IDs, so thath’s why we ended up with 1090 rows in the SFARI_genes dataset.

  • 32 genes had their IDs in LRG_n format, so they were manually converted to the regular ENSG…n format except for one that didn’t have any ensembl ID assigned to it (LRG_16, ADA Gene). I assigned it the Ensembl ID associated to the gene directly (ignoring the LRG ID)

  • 15 genes weren’t assigned any ID by bioMart (BICDL1, EMSY, ERBIN, KMT5B, LNPK, MIR137, MSNP1AS, NEXMIF, NSMCE3, PATJ, PLPPR4, PRKN, RP11-1407O15.2, TERB2, TSPOAP1), so they were assigned ensembl IDs manually except for one that didn’t have any ensembl ID assigned to it (MSNP1AS, which is the MSNP1 antisense gene)

  • In the end, 979 SFARI genes could be mapped to an ensembl ID (all except MSNP1AS)

Note: There are 24 genes in the SFARI Gene score list that do not have any score assigned to them, and three of them don’t have a syndromic tag either. I’m not sure what’s going on with these genes or why they are on the list?

print(paste0('There are ', sum(is.na(SFARI_genes$`gene-score`)) ,
             ' genes in the SFARI list without a score, of which ',
             sum(is.na(SFARI_genes$`gene-score`) & SFARI_genes$syndromic==0),
             ' don\'t have syndromic tag either (Why include them then???)'))
## [1] "There are 24 genes in the SFARI list without a score, of which 3 don't have syndromic tag either (Why include them then???)"

Exploratory Analysis

932/980 SFARI genes are present in the dataset (~95%),

print(paste0('There are ', sum(SFARI_genes$ID %in% rownames(datExpr)), ' SFARI Genes in the expression dataset'))
## [1] "There are 932 SFARI Genes in the expression dataset"
print(paste0('Of these, only ', sum(DE_info$`gene-score`!='None'), ' have an assigned score'))
## [1] "Of these, only 910 have an assigned score"

From now on, we’re only going to focus on the 910 genes with a score

Gene count by SFARI score:

table(DE_info$`gene-score`)
## 
##     1     2     3     4     5     6  None 
##    25    65   195   438   164    23 15690

Gene count by Syndromic tag:

table(DE_info$syndromic)
## 
##   0   1 
## 824 108


GO Neuronal annotations:

print(glue(sum(GO_neuronal$ID %in% rownames(datExpr)), ' genes have neuronal-related annotations'))
## 1122 genes have neuronal-related annotations
print(glue(sum(SFARI_genes$ID %in% GO_neuronal$ID),' of these genes have a SFARI score'))
## 193 of these genes have a SFARI score
table(DE_info$Neuronal[DE_info$`gene-score` %in% c('1','2','3','4','5','6')],
      DE_info$gene.score[DE_info$`gene-score` %in% c('1','2','3','4','5','6')])
##    
##       1   2   3   4   5   6
##   0  16  48 152 363 128  19
##   1   9  17  43  75  36   4


Gene Expression


Normalised data

The higher the SFARI score, the higher the mean expression of the gene but the lower the standard deviation. This is weird because the data was originally heteroscedastic with a positive relation between mean and variance, so the fact that the relation now seems to have reversed could mean that the vst normalisation ended up affecting the highly expressed genes more than it should have when trying to correct their higher variance.

plot_data = data.frame('ID'=rownames(datExpr), 'MeanExpr'=rowMeans(datExpr), 'SDExpr'=apply(datExpr,1,sd)) %>% 
            left_join(DE_info, by='ID')

p1 = ggplotly(plot_data %>% ggplot(aes(gene.score, MeanExpr, fill=gene.score)) + geom_boxplot() + 
              scale_fill_manual(values=SFARI_colour_hue(r=c(1:6,8,7))) + theme_minimal() +
              theme(legend.position='none'))

p2 = ggplotly(plot_data %>% ggplot(aes(gene.score, SDExpr, fill=gene.score)) + geom_boxplot() + 
              scale_fill_manual(values=SFARI_colour_hue(r=c(1:6,8,7))) + theme_minimal() +
              ggtitle('Mean Expression (left) and SD (right) by SFARI score') + 
              theme(legend.position='none'))

subplot(p1, p2, nrows=1)
rm(plot_data, p1, p2)


Raw data

Just to corroborate that the relation between sd and SFARI score used to be in the opposite direction before the normalisation: The higher the SFARI score the higher the mean expression and the higher the standard deviation

# Save preprocessed results
datExpr_prep = datExpr
datMeta_prep = datMeta
DE_info_prep = DE_info

load('./../Data/Gandal/filtered_raw_data.RData')

plot_data = data.frame('ID'=rownames(datExpr), 'MeanExpr'=rowMeans(datExpr), 'SDExpr'=apply(datExpr,1,sd)) %>% 
            left_join(DE_info, by='ID')

p1 = ggplotly(plot_data %>% ggplot(aes(gene.score, MeanExpr, fill=gene.score)) + geom_boxplot() + 
              scale_fill_manual(values=SFARI_colour_hue(r=c(1:6,8,7))) + theme_minimal() +
              theme(legend.position='none'))

p2 = ggplotly(plot_data %>% ggplot(aes(gene.score, SDExpr, fill=gene.score)) + geom_boxplot() + 
              scale_fill_manual(values=SFARI_colour_hue(r=c(1:6,8,7))) + theme_minimal() +
              ggtitle('Mean Expression (left) and SD (right) by SFARI score') + 
              theme(legend.position='none'))

subplot(p1, p2, nrows=1)
rm(plot_data, p1, p2)

Return to normalised version of the data

# Save preprocessed results
datExpr = datExpr_prep
datMeta = datMeta_prep
DE_info = DE_info_prep

rm(datExpr_prep, datMeta_prep, DE_info_prep)


Log Fold Change

It seems there’s a negative relation between SFARI score and log fold change when it would be expected to be either positively correlated or independent from each other (because there are other factors that determine if a gene is releated to Autism apart from differences in gene expression)

Wikipedia mentions the likely explanation for this: “A disadvantage and serious risk of using fold change in this setting is that it is biased and may misclassify differentially expressed genes with large differences (B − A) but small ratios (B/A), leading to poor identification of changes at high expression levels”.

Based on this, since we saw there is a strong relation between SFARI score and mean expression, assuming the SFARI scores are reliable, log fold change should not be used as a metric to determine differential expression when studying autism.

On top of this, I believe this effect is made more extreme by the pattern found in the previous plots, since the higher expressed genes were the most affected by the normalisation transformation, ending up with a smaller variance than the rest of the data, which is related to smaller ratios. (This is a constant problem independently of the normalisation function used).

ggplotly(DE_info %>% ggplot(aes(x=gene.score, y=abs(log2FoldChange), fill=gene.score)) + 
         geom_boxplot() + scale_fill_manual(values=SFARI_colour_hue(r=c(1:6,8,7))) + 
         theme_minimal() + theme(legend.position='none'))


Effects of modifying filtering threshold by SFARI score

The higher the SFARI score, the higher the percentage of genes that get filtered by differential expression.

lfc_list = seq(1, 1.2, 0.01)

all_counts = data.frame('group'='All', 'n'=as.character(nrow(DE_info)))
Neuronal_counts = data.frame('group'='Neuronal', n=as.character(sum(DE_info$Neuronal)))
lfc_counts_all = DE_info %>% group_by(`gene-score`) %>% tally %>%
                 mutate('group'=as.factor(`gene-score`), 'n'=as.character(n)) %>%
                 dplyr::select(group, n) %>%
                 bind_rows(Neuronal_counts, all_counts) %>%
                 mutate('lfc'=-1) %>%  dplyr::select(lfc, group, n)

for(lfc in lfc_list){
  
  # Recalculate DE_info with the new threshold (p-values change)
  DE_genes = results(dds, lfcThreshold=log2(lfc), altHypothesis='greaterAbs') %>% data.frame
  
  DE_genes = DE_genes %>% mutate('ID'=rownames(.)) %>% left_join(SFARI_genes, by='ID') %>% 
             mutate(`gene-score`=ifelse(is.na(`gene-score`), 'None', `gene-score`)) %>%
             distinct(ID, .keep_all = TRUE) %>% left_join(GO_neuronal, by='ID') %>%
             mutate(Neuronal=ifelse(is.na(Neuronal), 0, Neuronal)) %>%
             mutate(gene.score=ifelse(`gene-score`=='None' & Neuronal==1, 'Neuronal', `gene-score`))
  
  DE_genes = DE_genes %>% filter(padj<0.05 & abs(log2FoldChange)>log2(lfc))

  
  # Calculate counts by groups
  all_counts = data.frame('group'='All', 'n'=as.character(nrow(DE_genes)))
  Neuronal_counts = data.frame('group'='Neuronal', n=as.character(sum(DE_genes$Neuronal)))
  lfc_counts = DE_genes %>% group_by(`gene-score`) %>% tally %>%
               mutate('group'=`gene-score`, 'n'=as.character(n)) %>%
               bind_rows(Neuronal_counts, all_counts) %>%
               mutate('lfc'=lfc) %>% dplyr::select(lfc, group, n)
  
  
  # Update lfc_counts_all
  lfc_counts_all = lfc_counts_all %>% bind_rows(lfc_counts)
}

# Add missing entries with 0s
lfc_counts_all = expand.grid('group'=unique(lfc_counts_all$group), 'lfc'=unique(lfc_counts_all$lfc)) %>% 
  left_join(lfc_counts_all, by=c('group','lfc')) %>% replace(is.na(.), 0)

# Calculate percentage of each group remaining
tot_counts = DE_info %>% group_by(`gene-score`) %>% tally() %>% filter(`gene-score`!='None') %>%
             mutate('group'=`gene-score`, 'tot'=n) %>% dplyr::select(group, tot) %>%
             bind_rows(data.frame('group'='Neuronal', 'tot'=sum(DE_info$Neuronal)),
                       data.frame('group'='All', 'tot'=nrow(DE_info)))

lfc_counts_all = lfc_counts_all %>% filter(lfc!=-1, group!='None') %>% 
                 left_join(tot_counts, by='group') %>% mutate('perc'=round(100*as.numeric(n)/tot,2))


# Plot change of number of genes
ggplotly(lfc_counts_all %>% ggplot(aes(lfc, perc, color=group)) + geom_point(aes(id=n)) + geom_line() + 
         scale_color_manual(values=SFARI_colour_hue(r=1:8)) + ylab('% of remaining genes') +  xlab('Fold Change') + 
         ggtitle('Effect of filtering thresholds by SFARI score') + theme_minimal())
rm(lfc_list, all_counts, Neuronal_counts, lfc_counts_all, lfc, lfc_counts, lfc_counts_all, tot_counts, lfc_counts_all)

Session info

sessionInfo()
## R version 3.5.2 (2018-12-20)
## Platform: x86_64-redhat-linux-gnu (64-bit)
## Running under: Scientific Linux 7.6 (Nitrogen)
## 
## Matrix products: default
## BLAS/LAPACK: /usr/lib64/R/lib/libRblas.so
## 
## locale:
##  [1] LC_CTYPE=en_GB.UTF-8       LC_NUMERIC=C              
##  [3] LC_TIME=en_GB.UTF-8        LC_COLLATE=en_GB.UTF-8    
##  [5] LC_MONETARY=en_GB.UTF-8    LC_MESSAGES=en_GB.UTF-8   
##  [7] LC_PAPER=en_GB.UTF-8       LC_NAME=C                 
##  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
## [11] LC_MEASUREMENT=en_GB.UTF-8 LC_IDENTIFICATION=C       
## 
## attached base packages:
## [1] parallel  stats4    stats     graphics  grDevices utils     datasets 
## [8] methods   base     
## 
## other attached packages:
##  [1] DESeq2_1.22.2               SummarizedExperiment_1.12.0
##  [3] DelayedArray_0.8.0          BiocParallel_1.16.6        
##  [5] matrixStats_0.54.0          Biobase_2.42.0             
##  [7] GenomicRanges_1.34.0        GenomeInfoDb_1.18.2        
##  [9] IRanges_2.16.0              S4Vectors_0.20.1           
## [11] BiocGenerics_0.28.0         ClusterR_1.1.8             
## [13] gtools_3.5.0                Rtsne_0.15                 
## [15] GGally_1.4.0                gridExtra_2.3              
## [17] viridis_0.5.1               viridisLite_0.3.0          
## [19] RColorBrewer_1.1-2          plotlyutils_0.0.0.9000     
## [21] plotly_4.8.0                glue_1.3.1                 
## [23] reshape2_1.4.3              forcats_0.3.0              
## [25] stringr_1.4.0               dplyr_0.8.0.1              
## [27] purrr_0.3.1                 readr_1.3.1                
## [29] tidyr_0.8.3                 tibble_2.1.1               
## [31] ggplot2_3.1.0               tidyverse_1.2.1            
## 
## loaded via a namespace (and not attached):
##  [1] colorspace_1.4-1       htmlTable_1.11.2       XVector_0.22.0        
##  [4] base64enc_0.1-3        rstudioapi_0.7         bit64_0.9-7           
##  [7] AnnotationDbi_1.44.0   lubridate_1.7.4        xml2_1.2.0            
## [10] splines_3.5.2          geneplotter_1.60.0     knitr_1.22            
## [13] ade4_1.7-11            Formula_1.2-3          jsonlite_1.6          
## [16] Cairo_1.5-9            annotate_1.60.1        broom_0.5.1           
## [19] cluster_2.0.7-1        FD_1.0-12              shiny_1.2.0           
## [22] compiler_3.5.2         httr_1.4.0             backports_1.1.2       
## [25] assertthat_0.2.1       Matrix_1.2-15          lazyeval_0.2.2        
## [28] cli_1.1.0              later_0.8.0            acepack_1.4.1         
## [31] htmltools_0.3.6        tools_3.5.2            gmp_0.5-13.5          
## [34] gtable_0.2.0           GenomeInfoDbData_1.2.0 Rcpp_1.0.1            
## [37] cellranger_1.1.0       ape_5.3                nlme_3.1-137          
## [40] crosstalk_1.0.0        xfun_0.5               rvest_0.3.2           
## [43] mime_0.6               XML_3.98-1.11          zlibbioc_1.28.0       
## [46] MASS_7.3-51.1          scales_1.0.0           promises_1.0.1        
## [49] hms_0.4.2              yaml_2.2.0             memoise_1.1.0         
## [52] rpart_4.1-13           RSQLite_2.1.1          reshape_0.8.7         
## [55] latticeExtra_0.6-28    stringi_1.4.3          genefilter_1.64.0     
## [58] checkmate_1.8.5        permute_0.9-4          geometry_0.4.0        
## [61] rlang_0.3.2            pkgconfig_2.0.2        bitops_1.0-6          
## [64] evaluate_0.13          lattice_0.20-38        labeling_0.3          
## [67] htmlwidgets_1.3        bit_1.1-14             tidyselect_0.2.5      
## [70] plyr_1.8.4             magrittr_1.5           R6_2.4.0              
## [73] generics_0.0.2         Hmisc_4.1-1            DBI_1.0.0             
## [76] pillar_1.3.1           haven_1.1.1            foreign_0.8-71        
## [79] withr_2.1.2            mgcv_1.8-26            survival_2.43-3       
## [82] abind_1.4-5            RCurl_1.95-4.10        nnet_7.3-12           
## [85] modelr_0.1.4           crayon_1.3.4           rmarkdown_1.12        
## [88] locfit_1.5-9.1         grid_3.5.2             readxl_1.1.0          
## [91] data.table_1.12.0      blob_1.1.1             vegan_2.5-2           
## [94] digest_0.6.18          xtable_1.8-3           httpuv_1.5.0          
## [97] munsell_0.5.0          magic_1.5-9